home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / XQ WinME Scandisk On Boot 1.xpl < prev    next >
Text File  |  2001-11-27  |  1KB  |  38 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH 1"="Startup/Shutdown\Startup\Windows 9x/ME\30) ScanDisk"
  5. "NAME"="ScanDisk Options (WinMe)"
  6. "VERSION"="1.01"
  7. "OSVERSION"="000010"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Run Scandisk on boot"
  10. "DESCRIPTION 1"="If Windows detects that your PC has crashed, it starts ScanDisk while booting to correct any HD failures."
  11. "AUTHOR"="Xteq Systems (Neil R. Turner)"
  12. "CONTACTURL"="http://www.xteq.com/"
  13. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  14. "COMMENT 1"="Thanks to John Mulcahy [john_mulcahy@hotmail.com] and TeXHeX [TeXHeX@xteq.com] for the idea!"
  15.  
  16. ' Nothing like a nice easy plug-in, eh?
  17. sP="HKLM\System\CurrentControlSet\Control\FileSystem\DisableScandiskOnBoot" ' DWORD
  18.  
  19. Sub Plugin_Initialize 
  20.  s=RegReadValue(sP)
  21.  if s=01 then
  22.   Call SetUIElement(1, true)
  23.  end if
  24. End Sub
  25.  
  26. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  27.  b=GetUIElement(1)
  28.  if b=true then
  29.   Call RegWriteValue(sP,01,2)
  30.  else
  31.   Call RegDeleteValue(sP)
  32.  end if
  33.  
  34.  Restart
  35. End Sub
  36.  
  37. Sub Plugin_Terminate 
  38. End Sub